
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary-red: #dc2626;
      --primary-gradient: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
      --secondary-gradient: linear-gradient(135deg, #fca5a5 0%, #f87171 100%);
      --success-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
      --light-bg: #ffffff;
      --card-bg: #ffffff;
      --card-border: rgba(220, 38, 38, 0.15);
      --text-primary: #1f2937;
      --text-secondary: #6b7280;
      --accent-red: #dc2626;
      --accent-light-red: #fef2f2;
      --section-bg: #fef2f2;
      --greenColor: #05b105;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #fafafa;
      color: var(--text-primary);
      overflow-x: hidden;
      position: relative;
    }

    /* 动态背景 - 红色系 */
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 20% 30%, rgba(239, 68, 68, 0.05), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.05), transparent 40%);
      z-index: -1;
      pointer-events: none;
    }

    /* 顶部通知条 - 红白配色 */
    .top-notification {
      background: var(--primary-gradient);
      color: white;
      text-align: center;
      padding: 18px 20px;
      font-weight: 600;
      font-size: 15px;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 15px rgba(220, 38, 38, 0.2);
      border-bottom: 3px solid var(--primary-red);
    }

    @keyframes pulse-glow {
      0%, 100% { box-shadow: 0 2px 15px rgba(220, 38, 38, 0.2); }
      50% { box-shadow: 0 2px 25px rgba(220, 38, 38, 0.4); }
    }
    
    .top-notification {
      animation: pulse-glow 3s infinite;
    }

    /* 主容器 - 响应式网格布局 */
    .main-container {
      max-width: 1400px;
      margin: 40px auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    /* 左侧内容 */
    .main-content {
      background: white;
      border-radius: 24px;
      padding: 50px 45px;
      border: 2px solid var(--card-border);
      box-shadow: 0 10px 40px rgba(220, 38, 38, 0.08), 0 0 0 1px rgba(220, 38, 38, 0.05);
      position: relative;
      transition: all 0.3s ease;
    }

    .main-content:hover {
      box-shadow: 0 15px 50px rgba(220, 38, 38, 0.12), 0 0 0 1px rgba(220, 38, 38, 0.08);
      transform: translateY(-5px);
    }

    .main-title {
      font-size: 52px;
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 20px;
      color: var(--text-primary);
    }

    .highlight {
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline-block;
      position: relative;
    }

    .highlight::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--primary-gradient);
      border-radius: 2px;
    }

    .subtitle {
      font-size: 20px;
      color: var(--accent-red);
      font-weight: 600;
      margin-bottom: 30px;
    }

    .features-list {
      list-style: none;
      margin: 30px 0;
    }

    .features-list li {
      padding: 15px 0;
      padding-left: 40px;
      position: relative;
      font-size: 16px;
      color: var(--text-secondary);
    }

    .features-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: white;
      font-size: 18px;
      font-weight: 900;
      background: var(--primary-gradient);
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px #4c7551;
    }

    /* 按钮组 */
    .button-group {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin: 40px 0;
    }

    .btn-primary {
      background: var(--greenColor);
      color: white;
      border: none;
      padding: 22px 45px;
      border-radius: 50px;
      font-size: 18px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px #4c7551;
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .btn-primary:hover::before {
      width: 300px;
      height: 300px;
    }

    .btn-primary:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
    }

    .btn-primary:active {
      transform: translateY(-1px) scale(0.98);
    }

    .btn-secondary {
      background: var(--accent-light-red);
      color: var(--accent-red);
      border: 2px solid var(--accent-red);
      padding: 18px 40px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      text-align: center;
      transition: all 0.3s ease;
      display: block;
    }

    .btn-secondary:hover {
      background: var(--primary-gradient);
      color: white;
      border-color: var(--primary-red);
      box-shadow: 0 8px 25px #4c7551;
    }

    .instruction-text {
      text-align: center;
      color: var(--text-secondary);
      font-size: 14px;
      margin: 20px 0;
      font-style: italic;
    }

    /* 认证部分 */
    .certifications-section {
      margin-top: 35px;
      padding: 25px;
      background: var(--accent-light-red);
      border-radius: 16px;
      border: 2px dashed rgba(220, 38, 38, 0.2);
      animation: fadeInUp 0.8s ease-out 0.3s both;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .certifications-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--accent-red);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
      justify-content: center;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .certifications-title i {
      font-size: 16px;
      animation: shieldPulse 2s ease-in-out infinite;
    }

    @keyframes shieldPulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.1);
      }
    }

    /* 认证标识组 - 专业徽章样式 */
    .tags-group {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .tag {
      background: linear-gradient(135deg, #ffffff 0%, #fef8f8 100%);
      border: 2px solid rgba(220, 38, 38, 0.2);
      padding: 14px 20px;
      border-radius: 12px;
      font-size: 13px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-primary);
      transition: all 0.3s ease;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
      opacity: 0;
      animation: slideInLeft 0.5s ease-out forwards;
    }

    .tag:nth-child(1) {
      animation-delay: 0.5s;
    }

    .tag:nth-child(2) {
      animation-delay: 0.6s;
    }

    .tag:nth-child(3) {
      animation-delay: 0.7s;
    }

    .tag:nth-child(4) {
      animation-delay: 0.8s;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .tag::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--primary-gradient);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .tag:hover::before {
      opacity: 1;
    }

    .tag:hover {
      border-color: var(--accent-red);
      transform: translateX(5px);
      box-shadow: 0 6px 20px rgba(220, 38, 38, 0.15);
      background: white;
    }

    .tag i {
      font-size: 20px;
      color: var(--accent-red);
      min-width: 20px;
    }

    /* 认证标识特殊样式 */
    .tag.certification {
      justify-content: flex-start;
    }

    .tag.certification i {
      background: var(--accent-light-red);
      width: 36px;
      height: 36px;
      min-width: 36px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    /* 右侧数据卡片 - 全新可视化样式 */
    .stats-card {
      background: white;
      border-radius: 24px;
      padding: 0;
      border: 2px solid var(--card-border);
      box-shadow: 0 10px 40px rgba(220, 38, 38, 0.1);
      position: sticky;
      top: 100px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .stats-card:hover {
      box-shadow: 0 15px 50px rgba(220, 38, 38, 0.15);
      transform: translateY(-5px);
    }

    /* 主要收益展示区 */
    .main-stats-showcase {
      background: var(--primary-gradient);
      padding: 30px;
      position: relative;
      overflow: hidden;
    }

    .main-stats-showcase::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 200px;
      height: 200px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
    }

    .showcase-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .live-indicator {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.2);
      padding: 6px 14px;
      border-radius: 50px;
      backdrop-filter: blur(10px);
    }

    .live-dot {
      width: 8px;
      height: 8px;
      background: #10b981;
      border-radius: 50%;
      animation: pulse-dot 2s infinite;
      box-shadow: 0 0 10px #10b981;
    }

    @keyframes pulse-dot {
      0%, 100% { 
        transform: scale(1);
        opacity: 1;
      }
      50% { 
        transform: scale(1.2);
        opacity: 0.7;
      }
    }

    .live-text {
      color: white;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .showcase-icon {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 20px;
      backdrop-filter: blur(10px);
    }

    .showcase-title {
      color: rgba(255, 255, 255, 0.9);
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      position: relative;
      z-index: 1;
    }

    .main-earning {
      font-size: 48px;
      font-weight: 900;
      color: white;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    }

    /* 进度条 */
    .progress-bar {
      width: 100%;
      height: 8px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
    }

    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, #10b981, #059669);
      border-radius: 10px;
      transition: width 1s ease-out;
      box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
      animation: progressGlow 2s ease-in-out infinite;
    }

    @keyframes progressGlow {
      0%, 100% {
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
      }
      50% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
      }
    }

    .earning-subtitle {
      color: rgba(255, 255, 255, 0.9);
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 8px;
      position: relative;
      z-index: 1;
    }

    .earning-subtitle i {
      font-size: 14px;
    }

    .earning-subtitle span {
      font-weight: 700;
    }

    /* 每日平均薪资 */
    .average-daily-earning {
      margin-top: 20px;
      padding: 18px 20px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 12px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(10px);
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .average-label {
      color: rgba(255, 255, 255, 0.95);
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .average-amount {
      color: #fffa1e;
      font-size: 28px;
      font-weight: 900;
      text-shadow: 0 2px 10px rgba(16, 185, 129, 0.5);
      animation: amountPulse 2s ease-in-out infinite;
    }

    @keyframes amountPulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
    }

    /* 数据网格 */
    .stats-grid {
      padding: 25px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .stat-box {
      background: var(--accent-light-red);
      border-radius: 16px;
      padding: 18px;
      display: flex;
      align-items: center;
      gap: 15px;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .stat-box:hover {
      background: white;
      border-color: var(--accent-red);
      transform: translateX(5px);
      box-shadow: 0 4px 15px rgba(220, 38, 38, 0.1);
    }

    .stat-icon {
      width: 50px;
      height: 50px;
      min-width: 50px;
      background: white;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-red);
      font-size: 22px;
      box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
    }

    .stat-content {
      flex: 1;
    }

    .stat-label {
      font-size: 12px;
      color: var(--text-secondary);
      margin-bottom: 6px;
      font-weight: 600;
    }

    .stat-value {
      font-size: 22px;
      font-weight: 900;
      color: var(--text-primary);
    }

    .stat-value.highlight {
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* 快速行动按钮 */
    .quick-action {
      padding: 25px;
      padding-top: 0;
    }

    .stats-cta-btn {
      width: 100%;
      background: var(--greenColor);
      border: none;
      padding: 18px 25px;
      border-radius: 50px;
      color: white;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px #4c7551;
    }

    .stats-cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    }

    .stats-cta-btn:active {
      transform: translateY(-1px);
    }

    .stats-cta-btn i:last-child {
      font-size: 14px;
      transition: transform 0.3s ease;
    }

    .stats-cta-btn:hover i:last-child {
      transform: translateX(5px);
    }

    /* How It Works 区域 - 改为垂直时间线 */
    .how-it-works {
      max-width: 1200px;
      margin: 80px auto;
      padding: 60px 20px;
      background: var(--section-bg);
      border-radius: 30px;
    }

    .section-title {
      font-size: 44px;
      font-weight: 900;
      text-align: center;
      margin-bottom: 15px;
      color: var(--text-primary);
    }

    .section-subtitle {
      text-align: center;
      color: var(--text-secondary);
      font-size: 18px;
      margin-bottom: 20px;
    }

    .steps-container {
      max-width: 900px;
      margin: 0 auto 20px;
      display: flex;
      flex-direction: column;
      gap: 30px;
      position: relative;
    }

    /* 时间线连接线 */
    .steps-container::before {
      content: '';
      position: absolute;
      left: 60px;
      top: 80px;
      bottom: 80px;
      width: 3px;
      background: var(--secondary-gradient);
      border-radius: 2px;
    }

    .step-card {
      background: white;
      border-radius: 20px;
      padding: 35px 40px;
      border: 2px solid var(--card-border);
      box-shadow: 0 8px 30px rgba(220, 38, 38, 0.08);
      display: flex;
      align-items: center;
      gap: 30px;
      position: relative;
      transition: all 0.3s ease;
    }

    .step-card:hover {
      transform: translateX(10px);
      border-color: var(--accent-red);
      box-shadow: 0 12px 40px rgba(220, 38, 38, 0.15);
    }

    .step-number {
      width: 70px;
      height: 70px;
      min-width: 70px;
      background: var(--primary-gradient);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      font-weight: 900;
      color: white;
      box-shadow: 0 6px 20px #b1d799;
      border: 4px solid white;
      position: relative;
      z-index: 1;
    }

    .step-card .step-info {
      flex: 1;
    }

    .step-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text-primary);
    }

    .step-subtitle {
      font-size: 14px;
      color: var(--accent-red);
      margin-bottom: 12px;
      font-weight: 600;
    }

    .step-description {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    .step-arrow {
      display: none;
    }

    .step-detail {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .step-detail i {
      font-size: 32px;
      color: var(--accent-red);
    }

    .earning-display {
      display: inline-flex;
      flex-direction: column;
      gap: 5px;
      margin-top: 15px;
      background: var(--accent-light-red);
      padding: 15px 20px;
      border-radius: 12px;
      border: 2px solid var(--card-border);
    }

    .amount {
      font-size: 26px;
      font-weight: 900;
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .per-visit {
      font-size: 12px;
      color: var(--text-secondary);
      font-weight: 600;
    }

    /* 统计横幅 - 改为卡片式 */
    .stats-banner {
      background: white;
      border-radius: 20px;
      padding: 35px 40px;
      border: 2px solid var(--card-border);
      box-shadow: 0 8px 30px rgba(220, 38, 38, 0.08);
      display: flex;
      gap: 25px;
      align-items: center;
      max-width: 900px;
      margin: 0 auto 40px;
    }

    .stats-icon {
      font-size: 56px;
      color: var(--accent-red);
      min-width: 70px;
    }

    .stats-content {
      flex: 1;
    }

    .stats-main {
      font-size: 17px;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 8px;
    }

    .stats-translation {
      font-size: 14px;
      color: var(--text-secondary);
    }

    .stats-highlight {
      font-size: 16px;
      font-weight: 700;
      color: var(--accent-red);
      margin-top: 12px;
      padding: 12px 20px;
      background: var(--accent-light-red);
      border-radius: 8px;
      border-left: 4px solid var(--accent-red);
      display: inline-block;
      animation: bounceIn 0.8s ease-out;
    }

    @keyframes bounceIn {
      0% {
        opacity: 0;
        transform: scale(0.8);
      }
      50% {
        transform: scale(1.05);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* WhatsApp CTA - 改为更突出的样式 */
    .whatsapp-cta {
      text-align: center;
      max-width: 600px;
      margin: 0 auto;
    }

    .live-join-btn {
      background: var(--greenColor);
      border: none;
      padding: 24px 50px;
      border-radius: 50px;
      font-size: 19px;
      font-weight: 700;
      color: white;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px #b1d799;
      border: 3px solid rgba(255, 255, 255, 0.3);
    }

    .live-join-btn:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 15px 40px rgba(220, 38, 38, 0.45);
    }

    .live-join-btn:active {
      transform: translateY(-2px) scale(0.98);
    }

    .btn-content {
      display: flex;
      align-items: center;
      gap: 15px;
      position: relative;
      z-index: 1;
    }

    .btn-icon {
      font-size: 28px;
    }

    .btn-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
      transform: translate(-50%, -50%) scale(0);
      transition: transform 0.5s ease;
    }

    .live-join-btn:hover .btn-glow {
      transform: translate(-50%, -50%) scale(2);
    }

    .cta-instruction {
      margin-top: 20px;
      color: var(--text-secondary);
      font-size: 14px;
    }

    /* 品牌合作伙伴 - 白色背景 */
    .brand-partners {
      background: white;
      padding: 20px 20px;
      margin: 20px 0 ;
      border-top: 1px solid rgba(220, 38, 38, 0.1);
      border-bottom: 1px solid rgba(220, 38, 38, 0.1);
    }

    .brand-partners-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .brand-title {
      font-size: 40px;
      font-weight: 900;
      text-align: center;
      margin-bottom: 15px;
      color: var(--text-primary);
    }

    .brand-subtitle {
      text-align: center;
      color: var(--text-secondary);
      font-size: 16px;
      margin-bottom: 5px;
    }

    .brand-subtitle-ms {
      text-align: center;
      color: var(--text-secondary);
      font-size: 14px;
      margin-bottom: 50px;
    }

    .brand-logos-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .brand-row {
      display: contents;
    }

    .brand-logo {
      background: var(--accent-light-red);
      border: 2px solid var(--card-border);
      border-radius: 16px;
      padding: 20px;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .brand-logo:hover {
      transform: translateY(-5px);
      border-color: var(--accent-red);
      box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
      background: white;
    }

    .brand-logo img {
      height: 40px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      opacity: 0.85;
      transition: opacity 0.3s ease;
      filter: grayscale(30%);
    }

    .brand-logo:hover img {
      opacity: 1;
      filter: grayscale(0%);
    }

    /* 真实收益 - 改为滑动卡片样式 */
    .real-earnings {
      max-width: 1400px;
      margin: 80px auto;
      padding: 60px 20px;
      background: var(--section-bg);
      border-radius: 30px;
    }

    .earnings-header {
      text-align: center;
      margin-bottom: 20px;
    }

    .earnings-title {
      font-size: 40px;
      font-weight: 900;
      margin-bottom: 10px;
      color: var(--text-primary);
    }

    .earnings-subtitle {
      color: var(--text-secondary);
      font-size: 16px;
    }

    .testimonials-carousel {
      overflow: hidden;
      position: relative;
      padding: 10px 0;
    }

    .testimonials-track {
      display: flex;
      gap: 25px;
    }

    .testimonial-group {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
      min-width: 100%;
      opacity: 1;
      transition: opacity 0.5s ease;
    }

    /* 移动端轮播效果 */
    @media (max-width: 768px) {
      .testimonial-group {
        opacity: 0;
        display: none;
      }

      .testimonial-group.active {
        opacity: 1;
        display: grid;
      }
    }

    .testimonial-card {
      background: white;
      border-radius: 18px;
      padding: 28px;
      border: 2px solid var(--card-border);
      box-shadow: 0 8px 25px rgba(220, 38, 38, 0.08);
      position: relative;
      transition: all 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-8px);
      border-color: var(--accent-red);
      box-shadow: 0 12px 35px rgba(220, 38, 38, 0.15);
    }

    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 80px;
      font-family: Georgia, serif;
      color: rgba(220, 38, 38, 0.08);
      line-height: 1;
    }

    .testimonial-header {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
    }

    .user-avatar {
      position: relative;
    }

    .user-avatar img {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 3px solid white;
      box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
    }

    .verified-ring {
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      /* border: 2px solid var(--accent-red); */
      animation: rotate 4s linear infinite;
    }

    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .user-info {
      flex: 1;
    }

    .user-name {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 6px;
    }

    .verified-badge {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      color: var(--accent-red);
      font-weight: 600;
    }

    .testimonial-text {
      color: var(--text-primary);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 18px;
      position: relative;
      z-index: 1;
    }

    .rating-stars {
      display: flex;
      gap: 4px;
      color: #f59e0b;
      font-size: 16px;
    }

    /* Top Earners 排行榜 - 全新设计 */
    .top-earners-section {
      max-width: 1000px;
      margin: 20px auto;
      padding: 0 20px;
    }

    .earners-container {
      background: var(--section-bg);
      border-radius: 30px;
      padding: 50px 40px;
    }

    .earners-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .earners-title {
      font-size: 36px;
      font-weight: 900;
      margin-bottom: 10px;
      color: var(--text-primary);
    }

    .earners-subtitle {
      color: var(--text-secondary);
      font-size: 16px;
    }

    .leaderboard {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 30px;
    }

    .rank-card {
      background: white;
      border-radius: 20px;
      padding: 25px;
      border: 2px solid var(--card-border);
      box-shadow: 0 8px 25px rgba(220, 38, 38, 0.08);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .rank-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 6px;
      height: 100%;
      background: var(--primary-gradient);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .rank-card:hover {
      transform: translateX(8px);
      box-shadow: 0 12px 35px rgba(220, 38, 38, 0.15);
      border-color: var(--accent-red);
    }

    .rank-card:hover::before {
      opacity: 1;
    }

    /* 第一名特殊样式 */
    .rank-card.rank-1 {
      background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
      border: 2px solid #ffd700;
      box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    }

    .rank-card.rank-1::before {
      background: linear-gradient(180deg, #ffd700, #ffed4e);
      opacity: 1;
    }

    .rank-badge {
      position: absolute;
      top: -12px;
      left: 25px;
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 900;
      color: white;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .rank-badge.gold {
      background: linear-gradient(135deg, #ffd700, #ffed4e);
      color: #8B4513;
    }

    .rank-badge.silver {
      background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
      color: #4a4a4a;
    }

    .rank-badge.bronze {
      background: linear-gradient(135deg, #cd7f32, #e6a85c);
      color: #ffffff;
    }

    .badge-icon {
      font-size: 18px;
    }

    .badge-text {
      font-size: 13px;
      letter-spacing: 0.5px;
    }

    .rank-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 15px;
      margin-bottom: 15px;
    }

    .rank-left {
      flex: 1;
    }

    .rank-name {
      font-size: 22px;
      font-weight: 900;
      color: var(--text-primary);
      margin-bottom: 8px;
    }

    .rank-tasks {
      font-size: 14px;
      color: var(--text-secondary);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .rank-tasks i {
      color: var(--accent-red);
      font-size: 16px;
    }

    .rank-right {
      text-align: right;
    }

    .rank-earning {
      font-size: 32px;
      font-weight: 900;
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 6px;
    }

    .rank-label {
      font-size: 12px;
      color: var(--text-secondary);
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    /* 进度条 */
    .rank-progress {
      width: 100%;
      height: 8px;
      background: rgba(220, 38, 38, 0.1);
      border-radius: 10px;
      overflow: hidden;
    }

    .progress-fill-rank {
      height: 100%;
      background: var(--primary-gradient);
      border-radius: 10px;
      transition: width 1.5s ease-out;
      box-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
      animation: fillProgress 2s ease-out;
    }

    @keyframes fillProgress {
      from {
        width: 0 !important;
      }
    }

    /* 激励横幅 */
    .motivation-banner {
      background: white;
      border: 2px dashed var(--accent-red);
      border-radius: 16px;
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      text-align: center;
    }

    .motivation-banner i {
      font-size: 24px;
      color: #ff6b00;
      animation: flame 1.5s ease-in-out infinite;
    }

    @keyframes flame {
      0%, 100% {
        transform: scale(1) rotate(0deg);
      }
      50% {
        transform: scale(1.1) rotate(5deg);
      }
    }

    .motivation-banner p {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-primary);
      margin: 0;
    }

    /* FAQ */
    .faq-section {
      max-width: 1000px;
      margin: 20px auto;
      padding: 0 20px;
    }

    .faq-header {
      text-align: center;
      margin-bottom: 20px;
    }

    .faq-header h2 {
      font-size: 42px;
      font-weight: 900;
      margin-bottom: 10px;
      color: var(--text-primary)
    }

    .faq-header p {
      color: var(--text-secondary);
      font-size: 16px;
    }

    .faq-item {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 15px;
      margin-bottom: 15px;
      overflow: hidden;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      border-color: var(--accent-purple);
    }

    .faq-question {
      padding: 25px 30px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
    }

    .faq-question h3 {
      font-size: 16px;
      font-weight: 600;
      color: #e30000;
    }

    .faq-icon {
      font-size: 24px;
      color: var(--accent-cyan);
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
    }

    .faq-answer p {
      padding: 0 30px 25px 30px;
      color: var(--text-secondary);
      line-height: 1.8;
      font-size: 14px;
    }

    .faq-cta {
      text-align: center;
      margin-top: 50px;
    }

    .faq-join-btn {
      background: var(--greenColor);
      color: white;
      border: none;
      padding: 20px 50px;
      border-radius: 15px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    }
    .faq-join-btn i{font-size: 30px;}

    .faq-join-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    }

    /* 最终行动召唤 */
    .final-call-section {
      background: var(--card-bg);
      border-top: 1px solid var(--card-border);
      border-bottom: 1px solid var(--card-border);
      padding: 20px 20px;
      margin: 20px 0;
    }

    .final-call-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .call-highlight {
      text-align: center;
      margin-bottom: 30px;
    }

    .highlight-badge {
      display: inline-block;
      background:#e02c2c;
      padding: 10px 25px;
      border-radius: 25px;
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 20px;
      color: #fff;
    }

    .call-title {
      font-size: 48px;
      font-weight: 900;
      background: #667eea;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .call-description {
      text-align: center;
      color: var(--text-secondary);
      font-size: 18px;
      line-height: 1.8;
      max-width: 800px;
      margin: 0 auto 40px;
    }

    .call-description strong {
      color: var(--accent-cyan);
    }

    .opportunity-highlight {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      margin-bottom: 50px;
    }

    .opportunity-icon {
      font-size: 36px;
      background: var(--secondary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .opportunity-text {
      font-size: 20px;
      color: #667eea;
      font-weight: 600;
    }

    .opportunity-text strong {
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .live-cta-container {
      background: var(--primary-red);
      border-radius: 25px;
      padding: 40px;
      border: 1px solid var(--card-border);
    }

    .live-stats-wrapper {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 30px;
      margin-bottom: 40px;
      align-items: center;
    }

    .live-stat-item {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .stat-icon {
      font-size: 48px;
      background:#fff;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    /* 修复数据网格图标颜色 */
    .stats-grid .stat-icon,
    .stats-grid .stat-icon i {
      -webkit-text-fill-color: #dc2626 !important;
      -webkit-background-clip: unset !important;
      background-clip: unset !important;
      color: #dc2626 !important;
    }

    .stat-content {
      flex: 1;
    }

    .stat-label {
      font-size: 13px;
      color:#fff;
      margin-bottom: 8px;
    }

    .stat-number {
      font-size: 32px;
      font-weight: 900;
      color: white;
      margin-bottom: 5px;
    }

    .stat-number.earnings {
      background: var(--success-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-trend {
      font-size: 12px;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .stats-divider {
      width: 2px;
      height: 80px;
      background: linear-gradient(180deg, transparent, var(--accent-purple), transparent);
    }

    .live-cta-action {
      text-align: center;
    }

    .cta-urgency {
      margin-bottom: 25px;
    }

    .urgency-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--secondary-gradient);
      padding: 12px 25px;
      border-radius: 25px;
      font-size: 14px;
      font-weight: 700;
      animation: pulse 2s infinite;
    }

    .btn-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .btn-main {
      font-size: 20px;
    }

    .btn-sub {
      font-size: 13px;
      opacity: 0.9;
    }

    .final-assurance {
      text-align: center;
      margin-top: 30px;
      color: var(--text-secondary);
      font-size: 16px;
    }

    /* 悬浮按钮 */
    .floating-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--greenColor);
      color: white;
      border: none;
      padding: 18px 35px;
      border-radius: 50px;
      font-size: 22px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 10px 40px rgba(102, 126, 234, 0.5);
      transition: all 0.3s ease;
      z-index: 1000;
      box-shadow: 0 10px 30px rgba(33, 240, 5, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.3);
    }
    .floating-btn i{font-size: 30px;}
    .floating-btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 50px rgba(102, 126, 234, 0.7);
    }

    .float_btn_icon {
      font-size: 24px;
    }

    /* 响应式设计 - 优化移动端 */
    @media (max-width: 1024px) {
      .main-container {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 30px auto;
      }

      .main-content {
        padding: 40px 30px;
      }

      .stats-card {
        position: relative;
        top: 0;
      }

      .steps-container::before {
        display: none;
      }

      .step-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
      }

      .testimonial-group {
        grid-template-columns: 1fr;
      }

      .live-stats-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .stats-divider {
        width: 100%;
        height: 2px;
      }

      .brand-logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
      }

      .brand-logo {
        padding: 18px;
      }

      .earners-container {
        padding: 40px 30px;
      }
    }

    @media (max-width: 768px) {
      .main-title {
        font-size: 32px;
      }

      .subtitle {
        font-size: 18px;
      }

      .section-title {
        font-size: 28px;
      }

      .call-title {
        font-size: 28px;
      }

      .how-it-works {
        padding: 10px 15px;
        margin: 50px auto 10px auto;
      }

      .real-earnings {
        padding: 40px 15px;
        margin: 20px auto;
      }

      .btn-primary {
        padding: 18px 35px;
        font-size: 16px;
      }
      .btn-primary i{font-size: 40px;}

      .btn-secondary {
        padding: 16px 30px;
        font-size: 15px;
      }

      .live-join-btn {
        padding: 20px 35px;
        font-size: 17px;
      }

      .floating-btn {
        bottom: 15px;
        right: 15px;
        left: 15px;
        padding: 16px 20px;
        font-size: 18px;
        justify-content: center;
      }

      .main-earning {
        font-size: 36px;
      }

      .stats-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
      }

      .stats-highlight {
        font-size: 14px;
        padding: 10px 15px;
        width: 100%;
        text-align: center;
      }

      .brand-title {
        font-size: 28px;
      }

      .brand-logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
      }

      .brand-logo {
        padding: 5px 3px;
      }

      .brand-logo img {
        height: 32px;
        width: auto;
        max-width: 100%;
      }

      .earnings-title {
        font-size: 28px;
      }

      .faq-header h2 {
        font-size: 28px;
      }

      .earners-container {
        padding: 30px 20px;
      }

      .earners-title {
        font-size: 28px;
      }

      .rank-card {
        padding: 20px;
      }

      .rank-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
      }

      .rank-right {
        text-align: left;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .rank-earning {
        font-size: 28px;
      }

      .motivation-banner {
        flex-direction: column;
        padding: 18px;
      }

      .motivation-banner p {
        font-size: 14px;
      }

      .main-content {
        padding: 30px 20px;
      }

      .stats-card {
        padding: 0;
      }

      .main-stats-showcase {
        padding: 25px 20px;
      }

      .main-earning {
        font-size: 40px;
      }

      .average-daily-earning {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px;
      }

      .average-amount {
        font-size: 24px;
      }

      .stats-grid {
        padding: 20px;
      }

      .stat-box {
        padding: 15px;
      }

      .stat-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 20px;
      }

      .stat-value {
        font-size: 20px;
      }

      .quick-action {
        padding: 20px;
        padding-top: 0;
      }

      .stats-cta-btn {
        padding: 16px 20px;
        font-size: 15px;
      }
      .stats-cta-btn i{font-size: 30px;}

      .certifications-section {
        padding: 20px 15px;
      }

      .certifications-title {
        font-size: 13px;
      }

      .tags-group {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .testimonial-card {
        padding: 22px;
      }

      .step-card {
        padding: 25px 20px;
      }

      .winner-card {
        padding: 25px 20px;
      }
    }

    @media (max-width: 480px) {
      .main-title {
        font-size: 28px;
      }

      .section-title {
        font-size: 24px;
      }

      .tags-group {
        grid-template-columns: 1fr;
      }

      .tag.certification {
        padding: 12px 16px;
      }

      .brand-logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
      }

      .brand-logo {
        padding: 5px 3px;
        border-radius: 12px;
      }

      .brand-logo img {
        height: 28px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
      }

      .brand-title {
        font-size: 24px;
      }

      .brand-subtitle {
        font-size: 13px;
      }

      .brand-subtitle-ms {
        font-size: 12px;
        margin-bottom: 30px;
      }

      .stats-highlight {
        font-size: 13px;
        padding: 10px 12px;
      }

      .earners-container {
        padding: 25px 15px;
      }

      .earners-title {
        font-size: 24px;
      }

      .rank-card {
        padding: 18px;
      }

      .rank-name {
        font-size: 20px;
      }

      .rank-tasks {
        font-size: 13px;
      }

      .rank-earning {
        font-size: 24px;
      }

      .motivation-banner i {
        font-size: 20px;
      }

      .motivation-banner p {
        font-size: 13px;
      }
    }
